Boolean

class Boolean : Comparable<Boolean>

Represents a value which is either true or false. On the JVM, non-nullable values of this type are represented as values of the primitive type boolean.

Types

Companion
Link copied to clipboard
object Companion

Functions

and
Link copied to clipboard
infix external fun and(other: Boolean): Boolean

Performs a logical and operation between this Boolean and the other one. Unlike the && operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

compareTo
Link copied to clipboard
open operator external override fun compareTo(other: Boolean): Int

Compares this object with the specified object for order. Returns zero if this object is equal to the specified other object, a negative number if it's less than other, or a positive number if it's greater than other.

equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
fun equals(other: Boolean): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
not
Link copied to clipboard
operator external fun not(): Boolean

Returns the inverse of this boolean.

or
Link copied to clipboard
infix external fun or(other: Boolean): Boolean

Performs a logical or operation between this Boolean and the other one. Unlike the || operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

toString
Link copied to clipboard
open override fun toString(): String
xor
Link copied to clipboard
infix external fun xor(other: Boolean): Boolean

Performs a logical xor operation between this Boolean and the other one.

Extensions

toByte
Link copied to clipboard
inline fun Boolean.toByte(): Byte